Next.js Frontend: Display related tasks#55
Merged
Conversation
Add support for displaying bidirectional "relates-to" links between beads: - Add relates_to field to TypeScript Bead interface - Show related count indicator (Link2 icon + count) in bead card footer - Add "Related Tasks" section in bead detail panel with clickable rows showing status dot, bead ID, title, and status badge - Add related count badge per child task in subtask list rows - CardFooter now renders when either comments or related tasks exist Related bead data is resolved from allBeads prop using a Map for O(1) lookups. Unknown IDs (cross-project or deleted beads) are skipped gracefully. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
5f94e36 to
9c13723
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
relates_to?: string[]to TypeScript Bead interfacePart of epic beads-kanban-ui-2kh: Display relates_to links in UI
Test plan
bd dep relate, verify card footer shows "N related"🤖 Generated with Claude Code